@Luminary
3年前 提问
1个回答

c++hello world代码

Ann
3年前

编写一个hello world的程序是学习C++最基本的。下面给出几种用C++编写hello world的方法:

方法1:

#include <iostream>
using namespace std;

int main()
{
    cout << "Hello World!";
    return 0;
}

方法二:

#include <stdio.h>

int main() {
    printf("Hello World!");
    return 0;
}

方法三:

#include <cstdio>
#define saySomething(sth) puts(#sth)
int main()
{
    return saySomething(Hello world);
}